User Template Collection Update Endpoint
Overview
This endpoint allows users to update a specific template collection's details.
Request Details
HTTP Method
PATCH
Route
/api/users/[user_id]/collections/[collection_id]
Route Parameters
Parameter | Type | Required | Description |
---|---|---|---|
user_id | integer | Yes | The ID of the authenticated user |
collection_id | integer | Yes | The ID of the collection |
Headers
Header | Value | Required | Description |
---|---|---|---|
Accept | application/json | Yes | Specifies the response format |
Content-Type | application/json | Yes | Request body format |
Cookie | neptun-session | Yes | Session authentication cookie |
Query Parameters
No query parameters required.
Request Body
Field | Type | Required | Description |
---|---|---|---|
name | string | No | New name of the collection |
description | string | No | New description of the collection |
is_shared | boolean | No | Whether the collection is shared |
Response Format
Response Status Codes
Status Code | Description |
---|---|
200 | Successfully updated collection |
400 | Bad Request (invalid request body) |
401 | Unauthorized (invalid or missing session) |
403 | Forbidden (user_id mismatch) |
404 | Collection not found |
500 | Server error |
Success Response (200 OK)
{
"collection": {
"id": 1,
"name": "Updated Templates",
"description": "Updated collection description",
"is_shared": true,
"share_uuid": "550e8400-e29b-41d4-a716-446655440000",
"created_at": "2024-01-01T12:00:00Z",
"updated_at": "2024-01-01T12:30:00Z",
"neptun_user_id": 1,
"templates": [
{
"id": 1,
"description": "Basic Docker deployment script",
"file_name": "docker-deploy.sh",
"created_at": "2024-01-01T12:00:00Z",
"updated_at": "2024-01-01T12:00:00Z",
"neptun_user_id": 1,
"template_collection_id": 1,
"user_file_id": 1
}
]
}
}
Error Response (400 Bad Request)
{
"statusCode": 400,
"message": "Invalid body({ name?, description?, is_shared? })"
}
TypeScript Interface
interface Template {
id: number
description?: string
file_name: string
created_at: string
updated_at: string
neptun_user_id: number
template_collection_id?: number
user_file_id?: number
title?: string
text: string
language: string
extension: string
}
interface TemplateCollection {
id: number
name: string
description?: string
is_shared: boolean
share_uuid: string
created_at: string
updated_at: string
neptun_user_id: number
templates: Template[]
}
interface UpdateCollectionRequest {
name?: string
description?: string
is_shared?: boolean
}
interface ApiResponse {
collection: TemplateCollection
}
Python Model
from datetime import datetime
from typing import Optional, List
from pydantic import BaseModel
class Template(BaseModel):
id: int
description: Optional[str]
file_name: str
created_at: datetime
updated_at: datetime
neptun_user_id: int
template_collection_id: Optional[int]
user_file_id: Optional[int]
title: Optional[str]
text: str
language: str
extension: str
class TemplateCollection(BaseModel):
id: int
name: str
description: Optional[str]
is_shared: bool
share_uuid: str
created_at: datetime
updated_at: datetime
neptun_user_id: int
templates: List[Template]
class UpdateCollectionRequest(BaseModel):
name: Optional[str]
description: Optional[str]
is_shared: Optional[bool]
class ApiResponse(BaseModel):
collection: TemplateCollection
Code Examples
cURL Example
curl -X PATCH "https://neptun-webui.vercel.app/api/users/1/collections/1" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Cookie: neptun-session=your-session-cookie" \
-d '{
"name": "Updated Templates",
"description": "Updated collection description",
"is_shared": true
}'
Python Example
import httpx
from typing import Optional
async def update_user_collection(
user_id: int,
collection_id: int,
name: Optional[str] = None,
description: Optional[str] = None,
is_shared: Optional[bool] = None,
session_cookie: str = None
) -> ApiResponse:
url = f"https://neptun-webui.vercel.app/api/users/{user_id}/collections/{collection_id}"
data = {}
if name is not None:
data["name"] = name
if description is not None:
data["description"] = description
if is_shared is not None:
data["is_shared"] = is_shared
async with httpx.AsyncClient() as client:
response = await client.patch(
url,
json=data,
headers={
"Accept": "application/json",
"Content-Type": "application/json",
"Cookie": f"neptun-session={session_cookie}"
}
)
response.raise_for_status()
return ApiResponse(**response.json())
TypeScript/JavaScript Example
async function updateUserCollection(
userId: number,
collectionId: number,
data: UpdateCollectionRequest,
sessionCookie: string
): Promise<ApiResponse> {
const response = await fetch(
`https://neptun-webui.vercel.app/api/users/${userId}/collections/${collectionId}`,
{
method: 'PATCH',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
'Cookie': `neptun-session=${sessionCookie}`,
},
body: JSON.stringify(data),
}
)
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`)
}
return await response.json()
}
Notes
- The session cookie is required for authentication
- At least one of name, description, or is_shared must be provided
- The collection must belong to the specified user
- When is_shared is set to true, a share_uuid will be generated if not already present